home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / e / misc.txt / 000125_Maalobs_member@newsguy.com_Wed Oct 31 16:16:25 2007.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Path: reader1.panix.com!panix!newsfeed.stanford.edu!postnews.google.com!news3.google.com!out04a.usenetserver.com!news.usenetserver.com!in01.usenetserver.com!news.usenetserver.com!spln!extra.newsguy.com!newsp.newsguy.com!drn
  2. From: Maalobs <Maalobs_member@newsguy.com>
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: Uploading files with FTP to MVS data sets
  5. Date: 29 Oct 2007 03:55:46 -0700
  6. Organization: NewsGuy - Unlimited Usenet $19.95
  7. Lines: 62
  8. Message-ID: <fg4e7i019rd@drn.newsguy.com>
  9. NNTP-Posting-Host: p9302000000100648d3fdd6969990686566c1db5c32a21259.newsdawg.com
  10. User-Agent: Direct Read News 4.70
  11. Xref: panix comp.protocols.kermit.misc:15697
  12.  
  13. Hello there,
  14.  
  15. I'm trying to upload a file to an IBM MVS mainframe using K-95 V2.1.2, where the
  16. file is stored as a "data set".
  17. The full name of the data set (and hence, the file), is something like this:
  18. D123.XXXXXX.YYYYYY.20071029.1
  19.  
  20. The little I understand of these data sets, is that the '.' characters denote
  21. the equivalent of directory levels.
  22.  
  23. I log in with FTP, nothing special is reported:
  24. ---8<---
  25. [C:\] K-95> ftp ftp.mvsserver.com
  26. Connected to ftp.mvsserver.com.
  27. D610TES is logged on.  Working directory is "D123.".
  28. Switching Locus to REMOTE for file management commands
  29. such as CD, DIRECTORY, DELETE, RENAME.  Type HELP SET
  30. LOCUS at the K-95> prompt for further info.  Use the
  31. SET LOCUS command to disable automatic locus switching
  32. or to disable these queries.
  33. OK to switch Locus?y
  34. Restart requires Block or Compressed transfer mode.
  35. Remote system type is MVS.
  36. Default transfer mode is TEXT ("ASCII")
  37. [C:\] K-95>
  38. ---8<---
  39.  
  40. After that, I just run the put command to upload the file:
  41. ---8<---
  42. [C:\] K-95> put D123.XXXXXX.YYYYYY.20071029.1
  43. Kermit 95 2.1.2, 25 Nov 2002, pc [192.168.1.10]
  44.  
  45.    Current Directory: C:/
  46.         Network Host: ftp.mvsserver.com
  47.         Network Type: TCP/IP
  48.               Parity: none
  49.          RTT/Timeout: 00 / 00
  50.              FTP PUT:  => D123_XXXXXX_YYYYYY_20071029.1
  51.            File Type: TEXT (no translation)
  52.            File Size: 4425
  53.         Percent Done:
  54.         FTP Protocol:     ...10...20...30...40...50...60...70...80...90..100
  55.         Elapsed Time: 00:00:00
  56.   Transfer Rate, CPS: 0
  57.         Window Slots: N/A
  58.          Packet Type: N/A
  59.            I/O Count: 0
  60.           I/O Length: 0
  61.          Error Count: 0
  62.           Last Error:
  63.         Last Message: Invalid data set name "D123_XXXXXX_YYYYYY_20071029.1".
  64. Use MVS Dsname conventions.
  65. [C:\] K-95>
  66. ---8<---
  67.  
  68. Why are the first '.' characters in the filename converted to '_'?
  69. If that is the root problem here, then how do I tell Kermit not to change the
  70. filename?
  71.  
  72. If anyone has an idea how to solve this, I would gladly hear your suggestions.
  73. :)
  74.